CoAuthoringChatSendMessage
Sends a message to the co-authoring chat.
Syntax
expression.CoAuthoringChatSendMessage(sText);
expression
- A variable that represents a Api class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
sText | Required | string | Message text. |
Returns
This method doesn't return any data.
Example
window.Asc.plugin.executeMethod ("CoAuthoringChatSendMessage", [Asc.scope.meeting_info], function (isTrue) {
if (isTrue)
alert ("Meeting was created");
else
alert ("Meeting was create, please update SDK for checking info about created meeting in chat.");
});